69ba852c507ded3337473ac13b7965305db890e4,applications/accounting/src/org/ofbiz/accounting/payment/PaymentGatewayServices.java,PaymentGatewayServices,capturePaymentsByInvoice,#DispatchContext#Map#,946

Before Change



        if (testOrderId == null || !allSameOrder) {
            Debug.logWarning("Attempt to settle Invoice #" + invoiceId + " which contained none/multiple orders", module);
            Map result = ServiceUtil.returnSuccess();
            result.put("processResult", "FAILED");
            return result;
        }

        // get the invoice amount (amount to bill)

After Change



        if (testOrderId == null || !allSameOrder) {
            Debug.logWarning("Attempt to settle Invoice #" + invoiceId + " which contained none/multiple orders", module);
            return ServiceUtil.returnSuccess();
        }

        // get the invoice amount (amount to bill)